From b2368789c6ace3f85326bb388724f4756df9561c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Wed, 27 Feb 2008 16:09:05 +0000 Subject: [PATCH] use mktemp instead of tempfile. * docs/Makefile.am: use mktemp instead of tempfile. svn path=/trunk/; revision=284 --- ChangeLog | 4 ++++ docs/Makefile.am | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5cc6731..0a16d27 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-02-27 Øyvind Kolås + + * docs/Makefile.am: use mktemp instead of tempfile. + 2008-02-27 Øyvind Kolås * extensions/Makefile.am: -I$(top_builddir) to be able to include diff --git a/docs/Makefile.am b/docs/Makefile.am index b4d82e2..b18b221 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -53,7 +53,7 @@ index.html: index-static.html \ Makefile.am echo -n "HTML: $@" cp $< $@ - (which tempfile > /dev/null&& TMPFILE=`tempfile` || TMPFILE="/tmp/babl_build_tempfile" ;\ + (which mktemp > /dev/null&& TMPFILE=`mktemp` || TMPFILE="/tmp/babl_build_tempfile" ;\ export BABL_PATH="$(top_builddir)/extensions"; $(babl_html_dump) > $$TMPFILE;\ $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\ rm -f $$TMPFILE ) -- 2.30.2